-
Notifications
You must be signed in to change notification settings - Fork 199
dix: unexport screenIsSaved and HasSaverWindow() #1381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dix: unexport screenIsSaved and HasSaverWindow() #1381
Conversation
These aren't used by any external drivers, so no need to keep them public. Signed-off-by: Enrico Weigelt, metux IT consult <[email protected]>
|
|
||
| extern int screenIsSaved; | ||
|
|
||
| static inline bool HasSaverWindow(ScreenPtr pScreen) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason to not keep this a macro?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
type safety ?
|
@metux Btw, what's with all the Null* defines? (NullWindow, etc). |
These aren't used by any external drivers, so no need to keep them public.
Signed-off-by: Enrico Weigelt, metux IT consult [email protected]